home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_NetToHostInt.c,v < prev    next >
Text File  |  1991-10-22  |  2KB  |  121 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.01.27.16.38.32;  author mendel;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.11.21.09.10.21;  author mendel;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.10.22.14.51.25;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @v.
  27. Formed from net.c of src/lib/old/net.c.
  28. @
  29.  
  30.  
  31. 1.2
  32. log
  33. @Removed newline from rcsid string.
  34. @
  35. text
  36. @/* 
  37.  * Net_NetToHostInt.c --
  38.  *
  39.  *    Convert an integer from network to host byte ordering.
  40.  *
  41.  * Copyright 1988 Regents of the University of California
  42.  * All rights reserved.
  43.  * Permission to use, copy, modify, and distribute this
  44.  * software and its documentation for any purpose and without
  45.  * fee is hereby granted, provided that the above copyright
  46.  * notice appear in all copies.  The University of California
  47.  * makes no representations about the suitability of this
  48.  * software for any purpose.  It is provided "as is" without
  49.  * express or implied warranty.
  50.  */
  51.  
  52. #ifndef lint
  53. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_NetToHostInt.c,v 1.1 88/11/21 09:10:21 mendel Exp Locker: mendel $ SPRITE (Berkeley)";
  54. #endif not lint
  55.  
  56.  
  57. #include "machparam.h"
  58.  
  59. /* 
  60.  *----------------------------------------------------------------------
  61.  *
  62.  * Net_NetToHostInt --
  63.  *
  64.  *    Convert an integer in network byte order to an integer in 
  65.  *    host byte order.
  66.  *
  67.  * Results:
  68.  *    The integer in host byte order.
  69.  *
  70.  * Side effects:
  71.  *    None.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75. unsigned int 
  76. Net_NetToHostInt(longInt)
  77.     unsigned int longInt;    /* 32bit integer in network byte order. */
  78. {
  79.  
  80. #if BYTE_ORDER == LITTLE_ENDIAN
  81.     union {
  82.         unsigned int l;
  83.         unsigned char  c[4];
  84.     } in, out;
  85.  
  86.     in.l = longInt;
  87.     out.c[0] = in.c[3];
  88.     out.c[1] = in.c[2];
  89.     out.c[2] = in.c[1];
  90.     out.c[3] = in.c[0];
  91.  
  92.         return (out.l);
  93. #else
  94.     return (longInt);
  95. #endif
  96. }
  97. @
  98.  
  99.  
  100. 1.2.1.1
  101. log
  102. @Initial branch for Sprite server.
  103. @
  104. text
  105. @d18 1
  106. a18 1
  107. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_NetToHostInt.c,v 1.2 89/01/27 16:38:32 mendel Exp $ SPRITE (Berkeley)";
  108. @
  109.  
  110.  
  111. 1.1
  112. log
  113. @Initial revision
  114. @
  115. text
  116. @d18 1
  117. a18 2
  118. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE
  119.  (Berkeley)";
  120. @
  121.